home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / collections / ICollectionView.as < prev    next >
Text File  |  2009-02-12  |  812b  |  32 lines

  1. package mx.collections
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface ICollectionView extends IEventDispatcher
  6.    {
  7.        
  8.       
  9.       function set filterFunction(param1:Function) : void;
  10.       
  11.       function enableAutoUpdate() : void;
  12.       
  13.       function get length() : int;
  14.       
  15.       function disableAutoUpdate() : void;
  16.       
  17.       function itemUpdated(param1:Object, param2:Object = null, param3:Object = null, param4:Object = null) : void;
  18.       
  19.       function get filterFunction() : Function;
  20.       
  21.       function createCursor() : IViewCursor;
  22.       
  23.       function refresh() : Boolean;
  24.       
  25.       function set sort(param1:Sort) : void;
  26.       
  27.       function get sort() : Sort;
  28.       
  29.       function contains(param1:Object) : Boolean;
  30.    }
  31. }
  32.